home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / introefx.sql < prev    next >
Text File  |  2000-05-12  |  711b  |  19 lines

  1. /* RCSVER $Id: introefx.sql,v 1.2 1999-02-24 14:15:44-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        introefx.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the introefx table. This table defines the 
  9. *        types of effects available for the customer display
  10. *        (introductory effects).
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE introefx
  14. (
  15.     effect    NUMBER(38),    /* ID of this effect */
  16.     descr    VARCHAR2(30),    /* Description of this effect */
  17.     CONSTRAINT pk_introefx PRIMARY KEY (effect)
  18. );
  19.